home *** CD-ROM | disk | FTP | other *** search
/ PC Home 109 / PC Home 109.iso / data1.cab / Program_Files / be008.dxr / 00037.ls < prev    next >
Encoding:
Text File  |  2001-03-02  |  405 b   |  17 lines

  1. on exitFrame
  2.   set LastTick to the ticks
  3.   set OriginalTick to the ticks
  4.   repeat while (the ticks - OriginalTick) < 40
  5.     set x to 10 * (the ticks - LastTick)
  6.     set y to 2 * (the ticks - LastTick)
  7.     set LastTick to the ticks
  8.     set the locH of sprite 3 to the locH of sprite 3 - y
  9.     set the locH of sprite 4 to the locH of sprite 4 + x
  10.     updateStage()
  11.   end repeat
  12. end
  13.  
  14. on mouseUp
  15.   go(80)
  16. end
  17.